/* Mobile App Development Hero Section */
.hero-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Left Content */
.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInLeft 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #C2FC0D;
    padding: 8px 20px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 25px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(194, 252, 13, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 252, 13, 0.3);
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.2), transparent);
    animation: slideIn 2s linear infinite;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: #C2FC0D;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.hero-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin-bottom: 30px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #C2FC0D;
    color: #0c0b0e;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(194, 252, 13, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 252, 13, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-secondary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-secondary:hover svg {
    transform: translateX(5px);
}

/* Right Content - Phone Mockup */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out;
}

.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    transform-style: preserve-3d;
    animation: floatPhone 6s ease-in-out infinite;
}

.phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid rgba(194, 252, 13, 0.2);
    border-radius: 40px;
    padding: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.phone-frame:hover {
    transform: rotateY(5deg) rotateX(-5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.phone-mockup:hover .phone-screen img {
    transform: scale(1.05) rotateY(5deg);
    filter: brightness(1.1);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 15px;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.float-element:hover {
    background: rgba(194, 252, 13, 0.2);
    transform: scale(1.1);
}

.element-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: -10%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

/* Background Grid */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.bg-grid:nth-child(2) {
    animation-delay: 5s;
    opacity: 0.5;
}

.bg-grid:nth-child(3) {
    animation-delay: 10s;
    opacity: 0.3;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    50% {
        transform: translateY(-20px) rotateX(2deg) rotateY(2deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        max-width: 600px;
        margin: 0 auto 30px;
    }
    
    .phone-mockup {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-wrapper {
        gap: 30px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .phone-mockup {
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-wrapper {
        gap: 20px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .phone-mockup {
        max-width: 300px;
    }
}
/* Process Section */
.process-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.process-badge {
    display: inline-block;
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(194, 252, 13, 0.2);
    position: relative;
    overflow: hidden;
}

.process-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.2), transparent);
    animation: slideIn 2s linear infinite;
}

.process-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.process-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
    position: relative;
    z-index: 2;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.1), transparent);
    transition: left 0.5s ease;
}

.process-card:hover::before {
    left: 100%;
}

.process-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(194, 252, 13, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.process-icon {
    width: 60px;
    height: 60px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: rgba(194, 252, 13, 0.2);
    transform: scale(1.05);
}

.process-icon svg {
    width: 24px;
    height: 24px;
    stroke: #C2FC0D;
    transition: transform 0.3s ease;
}

.process-card:hover .process-icon svg {
    transform: rotate(10deg);
}

.process-step {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.process-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    font-weight: 700;
    color: rgba(194, 252, 13, 0.2);
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    color: #C2FC0D;
    transform: scale(1.1);
}

/* Animations */
@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .process-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 80px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-card {
        padding: 20px;
    }
    
    .process-title {
        font-size: 32px;
    }
    
    .process-description {
        font-size: 16px;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .process-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .process-number {
        font-size: 28px;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-grid {
        gap: 15px;
        padding: 0 10px;
    }
    
    .process-card {
        padding: 15px;
    }
    
    .process-title {
        font-size: 28px;
    }
    
    .process-description {
        font-size: 15px;
    }
    
    .process-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .process-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .process-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .process-number {
        font-size: 24px;
        top: 12px;
        right: 12px;
    }
}
/* Challenges Section */
.challenges-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1f 0%, #0c0b0e 100%);
    overflow: hidden;
}

.challenges-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.challenges-badge {
    display: inline-block;
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(194, 252, 13, 0.2);
    position: relative;
    overflow: hidden;
}

.challenges-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.2), transparent);
    animation: slideIn 2s linear infinite;
}

.challenges-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.challenges-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.challenges-table table {
    width: 100%;
    border-collapse: collapse;
}

.challenges-table th {
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(194, 252, 13, 0.2);
}

.challenges-table td {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
}

.challenges-table tr:last-child td {
    border-bottom: none;
}

.challenges-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.challenge-cell {
    width: 25%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.challenge-icon {
    width: 50px;
    height: 50px;
    background: rgba(194, 252, 13, 0.1);
    border: 1px solid rgba(194, 252, 13, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.challenge-icon svg {
    width: 24px;
    height: 24px;
    stroke: #C2FC0D;
}

.challenge-cell h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.client-cell {
    width: 45%;
}

.client-cell h4 {
    color: #C2FC0D;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.client-cell p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 5px 0;
}

.result-cell {
    width: 30%;
    text-align: center;
}

.result-tag {
    display: inline-block;
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(194, 252, 13, 0.2);
    margin-bottom: 10px;
}

.result-cell p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 5px 0;
}

/* Animations */
@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .challenges-title {
        font-size: 36px;
    }
    
    .challenges-table th,
    .challenges-table td {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .challenges-section {
        padding: 80px 0;
    }
    
    .challenges-table {
        overflow-x: auto;
    }
    
    .challenges-table table {
        min-width: 700px;
    }
    
    .challenge-cell {
        width: 30%;
    }
    
    .client-cell {
        width: 40%;
    }
    
    .result-cell {
        width: 30%;
    }
}

@media (max-width: 576px) {
    .challenges-section {
        padding: 60px 0;
    }
    
    .challenges-title {
        font-size: 28px;
    }
    
    .challenges-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }
    
    .challenge-icon {
        width: 40px;
        height: 40px;
    }
    
    .challenge-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .challenge-cell h3 {
        font-size: 16px;
    }
    
    .client-cell h4 {
        font-size: 14px;
    }
    
    .client-cell p,
    .result-cell p {
        font-size: 13px;
    }
    
    .result-tag {
        font-size: 12px;
        padding: 4px 12px;
    }
}
/* Tech Showcase Section */
.tech-showcase {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
}

.tech-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.tech-badge {
    display: inline-block;
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(194, 252, 13, 0.2);
    position: relative;
    overflow: hidden;
}

.tech-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.2), transparent);
    animation: slideIn 2s linear infinite;
}

.tech-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.tech-title .highlight {
    color: #C2FC0D;
    position: relative;
}

.tech-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.tech-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.tech-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.tech-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: max-content;
    justify-content: center;
}

.tech-track:hover {
    animation-play-state: paused;
}

.tech-item {
    flex: 0 0 auto;
    width: 320px;
    padding: 30px;
    margin-right: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.tech-item:hover {
    transform: translateY(-10px);
}

.tech-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.tech-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-icon img {
    transform: scale(1.1);
}

.tech-info {
    text-align: center;
}

.tech-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
    animation-delay: 0.1s;
}

.tech-info p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
    animation-delay: 0.2s;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-showcase {
        padding: 100px 0;
    }
    
    .tech-title {
        font-size: 48px;
    }
    
    .tech-item {
        width: 280px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .tech-showcase {
        padding: 80px 0;
    }
    
    .tech-title {
        font-size: 42px;
    }
    
    .tech-subtitle {
        font-size: 18px;
    }
    
    .tech-item {
        width: 260px;
        padding: 20px;
    }
    
    .tech-icon {
        width: 80px;
        height: 80px;
    }
    
    .tech-icon img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .tech-showcase {
        padding: 60px 0;
    }
    
    .tech-title {
        font-size: 36px;
    }
    
    .tech-badge {
        font-size: 12px;
        padding: 10px 24px;
    }
    
    .tech-item {
        width: 240px;
        padding: 15px;
    }
    
    .tech-icon {
        width: 70px;
        height: 70px;
    }
    
    .tech-icon img {
        width: 40px;
        height: 40px;
    }
    
    .tech-info h3 {
        font-size: 20px;
    }
    
    .tech-info p {
        font-size: 14px;
    }
}
/* FAQ Section */
.faq-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
}

.faq-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.faq-badge {
    display: inline-block;
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(194, 252, 13, 0.2);
    position: relative;
    overflow: hidden;
}

.faq-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.2), transparent);
    animation: slideIn 2s linear infinite;
}

.faq-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.faq-title .highlight {
    color: #C2FC0D;
    position: relative;
}

.faq-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.faq-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.faq-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    background: none;
    border: none;
    color: #C2FC0D;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-toggle:hover {
    background: rgba(194, 252, 13, 0.1);
    transform: scale(1.1);
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer {
    padding: 0 30px 25px;
}

.faq-answer p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.faq-answer li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.faq-answer li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: #C2FC0D;
    font-weight: 600;
}

.faq-note {
    font-size: 14px;
    color: #C2FC0D;
    font-style: italic;
    margin-top: 10px;
}

@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-section {
        padding: 100px 0;
    }
    
    .faq-title {
        font-size: 48px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-title {
        font-size: 42px;
    }
    
    .faq-subtitle {
        font-size: 18px;
    }
    
    .faq-question {
        padding: 20px 25px;
    }
    
    .faq-answer {
        padding: 0 25px 20px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 36px;
    }
    
    .faq-badge {
        font-size: 12px;
        padding: 10px 24px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px 15px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }
    
    .faq-note {
        font-size: 13px;
    }
}
/* Solutions Showcase Section */
.solutions-showcase {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    overflow: hidden;
}

.solutions-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.solutions-badge {
    display: inline-block;
    background: rgba(194, 252, 13, 0.1);
    color: #C2FC0D;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(194, 252, 13, 0.2);
    position: relative;
    overflow: hidden;
}

.solutions-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(194, 252, 13, 0.2), transparent);
    animation: slideIn 2s linear infinite;
}

.solutions-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.solutions-title .highlight {
    color: #C2FC0D;
    position: relative;
}

.solutions-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #C2FC0D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.solutions-title .highlight:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.solutions-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.solution-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.solution-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-card:hover .solution-image::before {
    opacity: 1;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-content {
    padding: 30px;
    text-align: center;
}

.solution-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
    animation-delay: 0.1s;
}

.solution-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
    animation-delay: 0.2s;
}

@keyframes slideIn {
    from {
        left: -100%;
    }
    to {
        left: 100%;
    }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .solutions-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .solutions-showcase {
        padding: 80px 0;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solutions-title {
        font-size: 42px;
    }
    
    .solutions-subtitle {
        font-size: 18px;
    }
    
    .solution-content {
        padding: 20px;
    }
    
    .solution-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .solutions-showcase {
        padding: 60px 0;
    }
    
    .solutions-title {
        font-size: 36px;
    }
    
    .solutions-badge {
        font-size: 12px;
        padding: 10px 24px;
    }
    
    .solution-content {
        padding: 15px;
    }
    
    .solution-image {
        height: 180px;
    }
    
    .solution-content h3 {
        font-size: 20px;
    }
    
    .solution-content p {
        font-size: 14px;
    }
}
/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0c0b0e 0%, #1a1a1f 100%);
    text-align: center;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-title .highlight {
    color: #C2FC0D;
    position: relative;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #C2FC0D;
    color: #0c0b0e;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(194, 252, 13, 0.3);
    background: #C2FC0D;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 42px;
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 16px;
        margin: 0 auto 30px;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .cta-description {
        font-size: 14px;
        margin: 0 auto 20px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}
/* Fix horizontal overflow */
html, body {
    overflow-x: hidden;
}
